home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / CDICTION / CSMARTDE.H < prev    next >
Text File  |  1989-09-15  |  574b  |  21 lines

  1. /*
  2.     CSmartDesktop: subclass of CDesktop that provides some additional
  3.         features. These are:
  4.         
  5.     Ñ    Support for modal windows. CSmartWindow also required.
  6.     
  7.     Ñ    Support for non-windows. These window _must_ have
  8.         a NIL refcon or the program will crash. This works
  9.         fine for the Inside Out debugger.
  10. */
  11.  
  12. #define _H_CSmartDesktop
  13. #include "CDesktop.h"
  14. #include "defs.h"
  15.  
  16. struct CSmartDesktop : CDesktop
  17. {
  18.     virtual void ISmartDesktop(CBureaucrat *aSupervisor);
  19.     virtual void DispatchClick(EventRecord *macEvent);
  20.     virtual void DispatchCursor(Point where, RgnHandle mouseRgn);
  21. };